home *** CD-ROM | disk | FTP | other *** search
/ MacAddict 117 / MacAddict 117.dmg / Software / Utilities / Tidy Up 1.0.9 (shareware).dmg / Tidy Up! / Tidy Up!.app / Contents / Resources / MP3 / lib / MPEG / MP3Info.pm
Encoding:
Perl POD Document  |  2006-02-09  |  835 b   |  46 lines

  1. package MPEG::MP3Info;  # old name
  2.  
  3. use strict;
  4. use vars qw[@ISA $VERSION @EXPORT @EXPORT_OK %EXPORT_TAGS];
  5.  
  6. use MP3::Info ':all';
  7. @ISA            = 'MP3::Info';
  8. $VERSION        = '0.90';
  9. @EXPORT            = @MP3::Info::EXPORT;
  10. @EXPORT_OK        = @MP3::Info::EXPORT_OK;
  11. %EXPORT_TAGS        = %MP3::Info::EXPORT_TAGS;
  12.  
  13. =pod
  14.  
  15. =head1 NAME
  16.  
  17. MPEG::MP3Info - Manipulate / fetch info from MP3 audio files
  18.  
  19. =head1 SYNOPSIS
  20.  
  21.     use MP3::Info;
  22.  
  23. =head1 DESCRIPTION
  24.  
  25. This is just a wrapper around MP3::Info now.
  26.  
  27. =head1 AUTHOR AND COPYRIGHT
  28.  
  29. Chris Nandor E<lt>pudge@pobox.comE<gt>, http://pudge.net/
  30.  
  31. Copyright (c) 1998-2001 Chris Nandor.  All rights reserved.  This program is
  32. free software; you can redistribute it and/or modify it under the terms
  33. of the Artistic License, distributed with Perl.
  34.  
  35.  
  36. =head1 SEE ALSO
  37.  
  38. MP3::Info
  39.  
  40.  
  41. =head1 VERSION
  42.  
  43. v0.90, Sunday, January 14, 2001
  44.  
  45. =cut
  46.